将时区设置为东八时区
1数据库链接
在application.properties中配置MySQL 数据链接配置serverTimezone=GMT%2B8
1 | spring.datasource.db.jdbc-url=jdbc:mysql://127.0.0.1:3306/database?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=true |
2 启动类添加 TimeZone.setDefault(TimeZone.getTimeZone(“GMT+8”));
1 | public class Application { |
3 处理类中的时间配置 @JsonFormat(pattern = “yyyy-MM-dd HH:mm:ss”,timezone=”GMT+8”)
1 | //入库日期 |